home *** CD-ROM | disk | FTP | other *** search
- #ifndef _BUFFER_SETUP_H_
- #define _BUFFER_SETUP_H_
-
- #include "bl.h"
- #include "button.h"
- #include "ceditl.h"
-
- class BufferSetup : public Bl
- {
- protected:
- CaptureEditLine* buffer_width;
- CaptureEditLine* buffer_height;
-
- Button* go;
- public:
- int w, h;
-
- BufferSetup();
- virtual void exe(int act = 0);
- };
-
- #endif _BUFFER_SETUP_H_